home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000318_fdc@columbia.edu_Wed Apr 26 14:25:45 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: question using "set tcp address"
  5. Date: 26 Apr 2006 18:25:38 GMT
  6. Organization: Columbia University
  7. Lines: 41
  8. Message-ID: <slrne4vep2.8v9.fdc@sesame.cc.columbia.edu>
  9. References: <1146055965.966403.181660@y43g2000cwc.googlegroups.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1146075938 12843 128.59.59.56 (26 Apr 2006 18:25:38 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 26 Apr 2006 18:25:38 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15575
  17.  
  18. On 2006-04-26, david.bambic@penske.com <david.bambic@penske.com> wrote:
  19. : I am running kermit
  20. :
  21. : C-Kermit 8.0.211, 10 Apr 2004, for HP-UX 11.00
  22. :  Numeric: 800211
  23. :
  24. : I am on a HPUX B.11.23 which has multiple network adapters (physical
  25. : and virtual) with a different address for each adapter. I also tried on
  26. : B.11.11 system with the same results.
  27. : The physical address ends in a 192.148.89.11 and I set tcp address
  28. : 192.148.89.47
  29. : I ftp to a host and I am still connecting from my physical address of
  30. : 192.148.89.11 and I would expect to use 192.148.89.47 because I have
  31. : set tcp address:
  32. :
  33. : SET TCP parameters:
  34. :  Reverse DNS lookup: automatic
  35. :  DNS Service Records lookup: off
  36. :  Keepalive: on
  37. :  Linger: off
  38. :  DontRoute: off
  39. :  Nodelay: off
  40. :  Send buffer: (default size)
  41. :  Receive buffer: (default size)
  42. :  address: 192.148.89.47
  43. :  http-proxy: (none)
  44. :
  45. I don't have access to any hosts with multiple network adapters so I can't
  46. troubleshoot this myself.  From what you say, it appears you are using the
  47. SET TCP ADDRESS command as intended:
  48.  
  49. SET TCP ADDRESS <ip-address>
  50.   This allows a specific IP Address on a multihomed host to be used
  51.   instead of allowing the TCP/IP stack to choose.  This may be necessary
  52.   when using authentication or listening for an incoming connection.
  53.   Specify no <ip-address> to remove the preference.
  54.  
  55. Try taking a debug log ("log debug", creates debug.log in current directory)
  56. to see if it illuminates the problem.
  57.  
  58. - Frank